home *** CD-ROM | disk | FTP | other *** search
/ Aminet 52 / Aminet 52 (2002)(GTI - Schatztruhe)[!][Dec 2002].iso / Aminet / misc / unix / unix_boot.lha / src / Makefile < prev    next >
Encoding:
Makefile  |  1991-12-09  |  491 b   |  20 lines

  1. # src files are taken from /usr/sys/amiga/boot
  2. # THANKS Commo for making those sources available!!
  3. #
  4.  
  5. CC = gcc2
  6. AS = $(CC)
  7. CFLAGS = -O2 -fomit-frame-pointer -Iinclude -DSUPERKICKSTART_KLUDGE
  8.  
  9. OBJ = Supervisor.o bind.o copyit.o rel.o streq.o streqn.o unix_boot.o
  10.  
  11. unix_boot: $(OBJ)
  12.     $(CC) $(OBJ) -o unix_boot
  13.  
  14. # generated by gcc2 -Iinclude -MM *.c
  15. bind.o : bind.c 
  16. rel.o : rel.c bootdata.h 
  17. streq.o : streq.c 
  18. streqn.o : streqn.c 
  19. unix_boot.o : unix_boot.c infoblock.h bootdata.h bootinfo.h 
  20.